home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TPUG - Toronto PET Users Group
/
TPUG Users Group CD
/
TPUG Users Group CD.iso
/
AMIGA
/
AMICUS
/
AMIBEST2.ADF
/
Best of AMICUS 2
/
C
/
SkinnyC
/
ReadMe.DOC
< prev
next >
Wrap
Text File
|
1987-07-22
|
773b
|
23 lines
Table 1. A Simplified Description of an Executable Object File Resulting From the "Standard" Compile and Link of a Simple Lattice C program.
Origin Description
c.o The first part of the file contains an assembly
language routine startup, which calls _main(). This
module also contains the routine _exit().
your.o This is your compiled C program. It supplies main()
and any other functions you've defined for use by
your "main" program.
lc.lib Any external references in the modules above which
could be satisfied from the object library lc.lib are
inserted here. This includes the function _main()
which startup calls, and exit() which your program
calls.
amiga.lib Any externals still not satisfied by lc.lib are pulled
in from this library.